home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- REM **************************************************
- REM THIS IS THE BATCH FILE THAT SHIPS TO OUR USERS
- REM **************************************************
-
- REM Check for QHI in the current directory
- if exist QHI.EXE goto PATCH
-
- REM Check that a directory was specified
- if (%1) == () goto NEEDDIR
-
- REM Check in the current directory of the specified drive
- REM This also works if the direcory ends with a \
- if exist %1QHI.EXE goto DRVONLY
-
- REM Check for Quicken in the specified directory
- if exist %1\QHI.EXE goto PATCH
-
- goto NOTFOUND
-
-
- REM Apply the Patch file to QHI. It will
- REM automatically detect the current version of QHI
- :PATCH
- patch %1 qhi3r8.rtp
- goto EXIT
- :DRVONLY
- patch %1. qhi3r8.rtp
- goto EXIT
-
- :NEEDDIR
- echo --------------------------------------------------------
- echo - Please include the name of the directory that contains
- echo - Quicken Home Inventory 3 for Windows. For example,
- echo - you should type:
- echo -
- echo - QHI3R8 C:\QUICKENW
- echo -
- echo - For more information, TYPE the README file.
- echo --------------------------------------------------------
- goto EXIT
-
- :NOTFOUND
- echo --------------------------------------------------------
- echo - Quicken Home Inventory 3 for Windows was not found in
- echo - the directory:
- echo -
- echo - %1
- echo -
- echo - Please check that you are correctly typing the name
- echo - of the directory in which you installed Quicken Home
- echo - Inventory. For example, you should type:
- echo -
- echo - QHI3R8 C:\QUICKENW
- echo -
- echo - For more information, TYPE the README file.
- echo --------------------------------------------------------
- goto EXIT
-
-
- :EXIT
-
-
-